home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 2 / Meeting Pearls Vol. II (1995)(GTI - Schatztruhe)[!].iso / Pearls / gfx / pbm / source / jpegV5.lha / jpegV5 / src / POSTER < prev    next >
Internet Message Format  |  1994-12-23  |  4KB

  1. From comp.sources.misc Thu Sep 29 00:36:33 1994
  2. Path: uniol!zib-berlin.de!news.belwue.de!news.dfn.de!Germany.EU.net!EU.net!uunet!sparky!not-for-mail
  3. From: jpeg-info@uunet.uu.net (Independent JPEG Group)
  4. Newsgroups: comp.sources.misc
  5. Subject: v44i098:  jpeg - JPEG image compression, Part01/27
  6. Followup-To: comp.sources.d
  7. Date: 26 Sep 1994 16:13:31 -0500
  8. Organization: Independent JPEG Group
  9. Lines: 1556
  10. Sender: kent@sparky.sterling.com
  11. Approved: kent@sparky.sterling.com
  12. Message-ID: <csm-v44i098=jpeg.161317@sparky.sterling.com>
  13. NNTP-Posting-Host: sparky.sterling.com
  14. Keywords: JPEG, image compression
  15. X-Md4-Signature: c89975bb92623a934ecf73c78eb0bb50
  16.  
  17. Submitted-by: jpeg-info@uunet.uu.net (Independent JPEG Group)
  18. Posting-number: Volume 44, Issue 98
  19. Archive-name: jpeg/part01
  20. Environment: UNIX, VMS, MS-DOS, Mac, Amiga, Atari, Cray
  21. Supersedes: jpeg: Volume 34, Issue 55-72
  22.  
  23. This package contains C software to implement JPEG image compression and
  24. decompression.  JPEG is a standardized compression method for full-color
  25. and gray-scale images.  JPEG is intended for "real-world" scenes; cartoons
  26. and other non-realistic images are not its strong suit.  JPEG is lossy,
  27. meaning that the output image is not identical to the input image.
  28. The user can trade off output image quality against compressed file size by
  29. adjusting a compression parameter.
  30.  
  31. The IJG code includes a reusable JPEG compression/decompression library,
  32. plus sample applications "cjpeg" and "djpeg", which perform conversion
  33. between JPEG JFIF format and image files in PPM/PGM (PBMPLUS), GIF, BMP,
  34. Utah RLE, and Targa formats.  Two small applications "wrjpgcom" and
  35. "rdjpgcom" insert and extract textual comments in JFIF files.
  36. The package is highly portable; it has been used successfully on many
  37. machines ranging from Apple IIs to Crays.
  38.  
  39. This version 5 supersedes version 4, which was posted in comp.sources.misc
  40. volume 34.  Important user-level improvements over version 4 include:
  41.  
  42. * Automatic configuration simplifies installation for most Unix systems.
  43.  
  44. * A range of speed vs. image quality tradeoffs are supported.
  45.   This includes resizing of an image during decompression: scaling down
  46.   by a factor of 1/2, 1/4, or 1/8 is handled very efficiently.
  47.  
  48. * New programs rdjpgcom and wrjpgcom allow insertion and extraction
  49.   of text comments in a JPEG file.
  50.  
  51. * cjpeg/djpeg support BMP file format.
  52.  
  53. The application programmer's interface to the library has changed completely.
  54. Notable improvements for the programmer include:
  55.  
  56. * We have eliminated the use of callback routines for handling the
  57.   uncompressed image data.  The application now sees the library as a
  58.   set of routines that it calls to read or write image data on a
  59.   scanline-by-scanline basis.
  60.  
  61. * The application image data is represented in a conventional interleaved-
  62.   pixel format, rather than as a separate array for each color channel.
  63.   This can save a copying step in many programs.
  64.  
  65. * The handling of compressed data has been cleaned up: the application can
  66.   supply routines to source or sink the compressed data.
  67.  
  68. * All static state has been eliminated from the library, so that multiple
  69.   instances of compression or decompression can be active concurrently.
  70.  
  71. * JPEG abbreviated datastream formats are supported, ie, quantization and
  72.   Huffman tables can be stored separately from the image data.
  73.  
  74. * And not only that, but the documentation of the library has improved
  75.   considerably!
  76.  
  77. We are releasing this software for both noncommercial and commercial use.
  78. Companies are welcome to use it as the basis for JPEG-related products.
  79. We do not ask a royalty, although we do ask for an acknowledgement in
  80. product literature (see the README file in the distribution for details).
  81. We hope to make this software industrial-quality --- although, as with
  82. anything that's free, we offer no warranty and accept no liability.
  83.  
  84. Please direct any questions about this software to jpeg-info@uunet.uu.net.
  85.  
  86.             Dr. Thomas G. Lane
  87.             organizer, Independent JPEG Group
  88.